@maxim_mazurok/gapi.client.forms-v1 0.0.20250415 → 0.0.20250422
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +9 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://forms.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250422
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -142,13 +142,13 @@ declare namespace gapi.client {
|
|
|
142
142
|
items?: Item[];
|
|
143
143
|
/** Output only. The ID of the linked Google Sheet which is accumulating responses from this Form (if such a Sheet exists). */
|
|
144
144
|
linkedSheetId?: string;
|
|
145
|
-
/** Output only. The publishing settings for a form. This field isn't set for legacy forms because they don't have the
|
|
145
|
+
/** Output only. The publishing settings for a form. This field isn't set for legacy forms because they don't have the publish_settings field. All newly created forms support publish settings. Forms with publish_settings value set can call SetPublishSettings API to publish or unpublish the form. */
|
|
146
146
|
publishSettings?: PublishSettings;
|
|
147
|
-
/** Output only. The form URI to share with responders. This opens a page that allows the user to submit responses but not edit the questions. For forms that have
|
|
147
|
+
/** Output only. The form URI to share with responders. This opens a page that allows the user to submit responses but not edit the questions. For forms that have publish_settings value set, this is the published form URI. */
|
|
148
148
|
responderUri?: string;
|
|
149
|
-
/** Output only. The revision ID of the form. Used in the WriteControl in update requests to identify the revision on which the changes are based. The format of the revision ID may change over time, so it should be treated opaquely. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the form *content* has not changed. Conversely, a changed ID (for the same form and user) usually means the form *content* has been updated; however, a changed ID can also be due to internal factors such as ID format changes. Form content excludes form metadata, including: * sharing settings (who has access to the form) *
|
|
149
|
+
/** Output only. The revision ID of the form. Used in the WriteControl in update requests to identify the revision on which the changes are based. The format of the revision ID may change over time, so it should be treated opaquely. A returned revision ID is only guaranteed to be valid for 24 hours after it has been returned and cannot be shared across users. If the revision ID is unchanged between calls, then the form *content* has not changed. Conversely, a changed ID (for the same form and user) usually means the form *content* has been updated; however, a changed ID can also be due to internal factors such as ID format changes. Form content excludes form metadata, including: * sharing settings (who has access to the form) * publish_settings (if the form supports publishing and if it is published) */
|
|
150
150
|
revisionId?: string;
|
|
151
|
-
/** The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during
|
|
151
|
+
/** The form's settings. This must be updated with UpdateSettingsRequest; it is ignored during CreateForm and UpdateFormInfoRequest. */
|
|
152
152
|
settings?: FormSettings;
|
|
153
153
|
}
|
|
154
154
|
interface FormResponse {
|
|
@@ -216,7 +216,7 @@ declare namespace gapi.client {
|
|
|
216
216
|
interface Info {
|
|
217
217
|
/** The description of the form. */
|
|
218
218
|
description?: string;
|
|
219
|
-
/** Output only. The title of the document which is visible in Drive. If
|
|
219
|
+
/** Output only. The title of the document which is visible in Drive. If Info.title is empty, `document_title` may appear in its place in the Google Forms UI and be visible to responders. `document_title` can be set on create, but cannot be modified by a batchUpdate request. Please use the [Google Drive API](https://developers.google.com/drive/api/v3/reference/files/update) if you need to programmatically update `document_title`. */
|
|
220
220
|
documentTitle?: string;
|
|
221
221
|
/** Required. The title of the form which is visible to responders. */
|
|
222
222
|
title?: string;
|
|
@@ -378,7 +378,7 @@ declare namespace gapi.client {
|
|
|
378
378
|
updateMask?: string;
|
|
379
379
|
}
|
|
380
380
|
interface SetPublishSettingsResponse {
|
|
381
|
-
/** Required. The ID of the Form. This is same as the
|
|
381
|
+
/** Required. The ID of the Form. This is same as the Form.form_id field. */
|
|
382
382
|
formId?: string;
|
|
383
383
|
/** The publish settings of the form. */
|
|
384
384
|
publishSettings?: PublishSettings;
|
|
@@ -868,7 +868,7 @@ declare namespace gapi.client {
|
|
|
868
868
|
callback?: string;
|
|
869
869
|
/** Selector specifying which fields to include in a partial response. */
|
|
870
870
|
fields?: string;
|
|
871
|
-
/** Required. The ID of the form. You can get the id from
|
|
871
|
+
/** Required. The ID of the form. You can get the id from Form.form_id field. */
|
|
872
872
|
formId: string;
|
|
873
873
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
874
874
|
key?: string;
|
|
@@ -897,7 +897,7 @@ declare namespace gapi.client {
|
|
|
897
897
|
callback?: string;
|
|
898
898
|
/** Selector specifying which fields to include in a partial response. */
|
|
899
899
|
fields?: string;
|
|
900
|
-
/** Required. The ID of the form. You can get the id from
|
|
900
|
+
/** Required. The ID of the form. You can get the id from Form.form_id field. */
|
|
901
901
|
formId: string;
|
|
902
902
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
903
903
|
key?: string;
|