Mise à jour des librairies vendor

This commit is contained in:
Caribana
2018-05-01 14:43:32 +02:00
parent b67375ae8e
commit d776be73fc
5211 changed files with 59115 additions and 25863 deletions

View File

@@ -1,6 +1,6 @@
<?php
/*
* Copyright 2016 Google Inc.
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
@@ -19,8 +19,7 @@
* Service definition for FirebaseDynamicLinks (v1).
*
* <p>
* Firebase Dynamic Links API enables third party developers to programmatically
* create and manage Dynamic Links.</p>
* Programmatically creates and manages Firebase Dynamic Links.</p>
*
* <p>
* For more information about this service, see the API
@@ -35,7 +34,9 @@ class Google_Service_FirebaseDynamicLinks extends Google_Service
const FIREBASE =
"https://www.googleapis.com/auth/firebase";
public $managedShortLinks;
public $shortLinks;
public $v1;
/**
* Constructs the internal representation of the FirebaseDynamicLinks service.
@@ -50,6 +51,20 @@ class Google_Service_FirebaseDynamicLinks extends Google_Service
$this->version = 'v1';
$this->serviceName = 'firebasedynamiclinks';
$this->managedShortLinks = new Google_Service_FirebaseDynamicLinks_Resource_ManagedShortLinks(
$this,
$this->serviceName,
'managedShortLinks',
array(
'methods' => array(
'create' => array(
'path' => 'v1/managedShortLinks:create',
'httpMethod' => 'POST',
'parameters' => array(),
),
)
)
);
$this->shortLinks = new Google_Service_FirebaseDynamicLinks_Resource_ShortLinks(
$this,
$this->serviceName,
@@ -64,5 +79,33 @@ class Google_Service_FirebaseDynamicLinks extends Google_Service
)
)
);
$this->v1 = new Google_Service_FirebaseDynamicLinks_Resource_V1(
$this,
$this->serviceName,
'v1',
array(
'methods' => array(
'getLinkStats' => array(
'path' => 'v1/{dynamicLink}/linkStats',
'httpMethod' => 'GET',
'parameters' => array(
'dynamicLink' => array(
'location' => 'path',
'type' => 'string',
'required' => true,
),
'durationDays' => array(
'location' => 'query',
'type' => 'string',
),
),
),'installAttribution' => array(
'path' => 'v1/installAttribution',
'httpMethod' => 'POST',
'parameters' => array(),
),
)
)
);
}
}